home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1995 October
/
EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso
/
Aminet
/
disk
/
bakup
/
mrbk220.lha
/
Rexx
/
Start-Arexx
< prev
next >
Wrap
Text File
|
1990-12-29
|
839b
|
27 lines
; ======================== Start-ARexx ==========================
; Loads the libraries required by ARexx and starts the ARexx server.
; This could be placed in your startup-sequence to activate ARexx.
; N.B. The double-precision math library mathieeedoubbas.library must
; be in the LIBS: directory. If this is not convenient, copy it into
; this disk's :libs directory and uncomment the following line ...
; ARexx_Disk:c/loadlib ARexx_Disk:libs/mathieeedoubbas.library
loadlib libs:rexxsyslib.library
if error
echo "Couldn't load rexxsyslib.lbrary"
quit 20
endif
loadlib libs:rexxsupport.library
; Start the ARexx server if it's not already active
waitforport -i AREXX
if warn
rexxmast
waitforport AREXX
endif
; Make the support library available
rxlib rexxsupport.library 0 -30 0